home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / aw-done.js < prev    next >
Encoding:
JavaScript  |  2004-05-24  |  9.1 KB  |  241 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code, released
  16.  * March 31, 1998.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998-1999
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. var gPrefsBundle;
  40.  
  41. function donePageInit() {
  42.     var pageData = parent.GetPageData();
  43.     var currentAccountData = gCurrentAccountData;
  44.  
  45.     if ("testingIspServices" in this) {
  46.       if (testingIspServices()) {
  47.         if ("setOtherISPServices" in this) {
  48.           setOtherISPServices();
  49.         }
  50.  
  51.         if (currentAccountData && currentAccountData.useOverlayPanels && currentAccountData.createNewAccount) {
  52.           var backButton = document.documentElement.getButton("back");
  53.           backButton.setAttribute("disabled", true);
  54.  
  55.           var cancelButton = document.documentElement.getButton("cancel");
  56.           cancelButton.setAttribute("disabled", true);
  57.  
  58.           setPageData(pageData, "identity", "email", gEmailAddress);
  59.           setPageData(pageData, "identity", "fullName", gUserFullName);
  60.           setPageData(pageData, "login", "username", gScreenName);
  61.         }
  62.       }
  63.     }
  64.    
  65.     gPrefsBundle = document.getElementById("bundle_prefs");
  66.     var showMailServerDetails = true; 
  67.  
  68.     if (currentAccountData) {
  69.         // find out if we need to hide server details
  70.         showMailServerDetails = currentAccountData.showServerDetailsOnWizardSummary; 
  71.         // Change the username field description to email field label in aw-identity
  72.         setUserNameDescField(currentAccountData.emailIDFieldTitle);
  73.     }
  74.  
  75.     // Find out if we need to hide details for incoming servers
  76.     var hideIncoming = (gCurrentAccountData && gCurrentAccountData.wizardHideIncoming);
  77.  
  78.     var email = "";
  79.     if (pageData.identity && pageData.identity.email) {
  80.         // fixup the email
  81.         email = pageData.identity.email.value;
  82.         if (email.split('@').length < 2 && 
  83.                      currentAccountData && 
  84.                      currentAccountData.domain)
  85.             email += "@" + currentAccountData.domain;
  86.     }
  87.     setDivTextFromForm("identity.email", email);
  88.  
  89.     var userName="";
  90.     if (pageData.login && pageData.login.username)
  91.         userName = pageData.login.username.value;
  92.     if (!userName && email)
  93.         userName = getUsernameFromEmail(email);
  94.     // Hide the "username" field if we don't want to show information
  95.     // on the incoming server.
  96.     setDivTextFromForm("server.username", hideIncoming ? null : userName);
  97.  
  98.     var smtpUserName="";
  99.     if (pageData.login && pageData.login.smtpusername)
  100.         smtpUserName = pageData.login.smtpusername.value;
  101.     if (!smtpUserName && email)
  102.         smtpUserName = getUsernameFromEmail(email);
  103.     setDivTextFromForm("smtpServer.username", smtpUserName);
  104.  
  105.     var accountName="";
  106.     if (pageData.accname && pageData.accname.prettyName) {
  107.         accountName = pageData.accname.prettyName.value;
  108.  
  109.         // If the AccountData exists, tha means we have values read from rdf file.
  110.         // Get the pretty name and polish the account name
  111.         if ( currentAccountData && 
  112.              currentAccountData.incomingServer.prettyName)
  113.         {
  114.             var prettyName = currentAccountData.incomingServer.prettyName; 
  115.             // Get the polished account name 
  116.             accountName = gPrefsBundle.getFormattedString("accountName",
  117.                                                           [prettyName,
  118.                                                            userName]);
  119.             // Set that to be the name in the pagedata 
  120.             pageData.accname.prettyName.value = accountName;
  121.         }
  122.     }
  123.     setDivTextFromForm("account.name", accountName);
  124.  
  125.     // Show mail servers (incoming&outgoing) details
  126.     // based on current account data. ISP can set 
  127.     // rdf value of literal showServerDetailsOnWizardSummary
  128.     // to false to hide server details
  129.     if (showMailServerDetails && !serverIsNntp(pageData)) {
  130.         var incomingServerName="";
  131.         if (pageData.server && pageData.server.hostname) {
  132.             incomingServerName = pageData.server.hostname.value;
  133.             if (!incomingServerName && 
  134.                  currentAccountData && 
  135.                  currentAccountData.incomingServer.hostname)
  136.                 incomingServerName = currentAccountData.incomingServer.hostName;
  137.         }
  138.         // Hide the incoming server name field if the user specified
  139.         // wizardHideIncoming in the ISP defaults file
  140.         setDivTextFromForm("server.name", hideIncoming ? null : incomingServerName);
  141.  
  142.         var incomingServerType="";
  143.         if (pageData.server && pageData.server.servertype) {
  144.             incomingServerType = pageData.server.servertype.value;
  145.             if (!incomingServerType && 
  146.                  currentAccountData && 
  147.                  currentAccountData.incomingServer.type)
  148.                 incomingServerType = currentAccountData.incomingServer.type;
  149.         }
  150.         setDivTextFromForm("server.type", incomingServerType.toUpperCase());
  151.  
  152.         var smtpServerName="";
  153.         if (pageData.server && pageData.server.smtphostname) {
  154.           var smtpServer = parent.smtpService.defaultServer;
  155.           smtpServerName = pageData.server.smtphostname.value;
  156.           if (!smtpServerName && smtpServer && smtpServer.hostname)
  157.               smtpServerName = smtpServer.hostname;
  158.         }
  159.         setDivTextFromForm("smtpServer.name", smtpServerName);
  160.     }
  161.     else {
  162.         setDivTextFromForm("server.name", null);
  163.         setDivTextFromForm("server.type", null);
  164.         setDivTextFromForm("smtpServer.name", null);
  165.     }
  166.  
  167.     if (serverIsNntp(pageData)) {
  168.         var newsServerName="";
  169.         if (pageData.newsserver && pageData.newsserver.hostname)
  170.             newsServerName = pageData.newsserver.hostname.value;
  171.         if (newsServerName) {
  172.             // No need to show username for news account
  173.             setDivTextFromForm("server.username", null);
  174.         }
  175.         setDivTextFromForm("newsServer.name", newsServerName);
  176.     }
  177.     else {
  178.         setDivTextFromForm("newsServer.name", null);
  179.     }
  180.  
  181.     var isPop = false;
  182.     if (pageData.server && pageData.server.servertype) {
  183.       isPop = (pageData.server.servertype.value == "pop3");
  184.     }
  185.  
  186.     hideShowDownloadMsgsUI(isPop);
  187. }
  188.  
  189. function hideShowDownloadMsgsUI(isPop)
  190. {
  191.   // only show the "download messages now" UI
  192.   // if this is a pop account, we are online, and this was opened
  193.   // from the 3 pane
  194.   var downloadMsgs = document.getElementById("downloadMsgs");
  195.   if (isPop) {
  196.     var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
  197.     if (!ioService.offline) {
  198.       if ((window.opener.location.href == "chrome://messenger/content/messenger.xul") || (window.opener.location.href == "chrome://messenger/content/mail3PaneWindowVertLayout.xul")) {
  199.         downloadMsgs.hidden = false;
  200.         return;
  201.       }
  202.     }
  203.   }
  204.  
  205.   // else hide it
  206.   downloadMsgs.hidden = true;
  207. }
  208.  
  209. function setDivTextFromForm(divid, value) {
  210.  
  211.     // collapse the row if the div has no value
  212.     var div = document.getElementById(divid);
  213.     if (!value) {
  214.         div.setAttribute("collapsed","true");
  215.         return;
  216.     }
  217.     else {
  218.         div.removeAttribute("collapsed");
  219.     }
  220.  
  221.     // otherwise fill in the .text element
  222.     div = document.getElementById(divid+".text");
  223.     if (!div) return;
  224.  
  225.     // set the value
  226.     div.setAttribute("value", value);
  227. }
  228.  
  229. function setUserNameDescField(name)
  230. {
  231.    if (name) {
  232.        var userNameField = document.getElementById("server.username.label");
  233.        userNameField.setAttribute("value", name);
  234.    }
  235. }
  236.  
  237. function setupAnother(event)
  238. {
  239.     window.alert("Unimplemented, see bug #19982");
  240. }
  241.